blob: d6248a3bd129b8c901e14c0745ab352a9bd60664 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
<script lang="ts">
import { user, type User } from '$lib/AniList/user';
import HeadTitle from '$lib/Home/HeadTitle.svelte';
import { estimatedDayReading } from '$lib/Media/Manga/time';
import Skeleton from '$lib/Skeleton.svelte';
import root from '$lib/Utility/root.js';
import { onMount } from 'svelte';
export let data;
let userData: User | undefined = undefined;
onMount(() => {
user(data.username).then((profile) => {
userData = profile;
});
});
// 8.5827814569536423841e0
</script>
<HeadTitle route={`${data.username}'s Profile`} path={`/user/${data.username}`} />
<div class={userData ? 'card card-small' : 'card'} id="user-panel">
{#if userData === null}
Could not load user profile for <a
href={`https://anilist.co/user/${data.username}`}
target="_blank">@{data.username}</a
>.
<p />
Does this user exist?
{:else if userData === undefined}
<p>Loading user ... 50%</p>
<Skeleton card={false} count={1} />
{:else}
<div
class="card"
id="user-grid"
style={`background-image: ${userData ? `url(${userData.bannerImage})` : 'none'}; padding: 0;`}
>
{#if userData}
<img src={userData.bannerImage} alt="" id="cover-image" />
{/if}
<div class="card" id="user-grid-content">
<div id="user-grid-avatar">
<a
href={`https://anilist.co/user/${userData.name}`}
target="_blank"
title={String(userData.id)}
>
<img src={userData.avatar.large} alt="" width="100vw" id="avatar" />
</a>
</div>
<div id="user-grid-content-text">
<p>
<a
href={`https://anilist.co/user/${userData.name}`}
target="_blank"
title={String(userData.id)}>@{userData.name}</a
>
<span class="click-item">•</span>
<a href={root(`/user/${userData.name}/badges`)}>Badge Wall</a>
</p>
{data.username} has watched {(userData.statistics.anime.minutesWatched / 60 / 24).toFixed(
1
)} days of anime and read
{estimatedDayReading(userData.statistics.manga.chaptersRead).toFixed(1)} days of manga.
<p />
{data.username} has collected {#await fetch(root(`/api/badges?id=${userData.id}`))}
...
{:then badges}
{#await badges.json()}
...
{:then badges}
{badges.length}
{:catch}
?
{/await}
{:catch}
?
{/await}
badges using Badge Wall.
</div>
</div>
</div>
{/if}
</div>
<style>
#user-grid-content {
display: flex;
flex-wrap: wrap;
column-gap: 1.5em;
background-color: rgba(0, 0, 0, 0.468);
color: #d8d8d8;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
#user-grid-avatar {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#avatar {
border-radius: 8px;
}
.click-item {
margin: 0 0.625rem;
}
#user-grid {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
#cover-image {
visibility: hidden;
height: 4.5em;
}
</style>
|